home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / ubiquity / tzsetup / post-base-installer next >
Text File  |  2009-10-28  |  334b  |  17 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. . /usr/share/debconf/confmodule
  5.  
  6. db_get time/zone
  7. zone="$RET"
  8.  
  9. if [ ! -e /target/usr/share/zoneinfo/$zone ]; then
  10.     logger -t tzsetup "Warning: ignoring invalid time zone '$zone'"
  11.     exit 0
  12. fi
  13.  
  14. echo "$zone" > /target/etc/timezone
  15. rm -f /target/etc/localtime
  16. cp -f /target/usr/share/zoneinfo/$zone /target/etc/localtime
  17.